home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / mg / src.lzh / amiga / sleep.c < prev    next >
C/C++ Source or Header  |  1990-05-23  |  371b  |  25 lines

  1. /*
  2.  * Name:    MicroEmacs
  3.  *        AmigaDOS sleep function
  4.  * Version:    31
  5.  * Last Edit:    18-Apr-86
  6.  * Created:    18-Apr-86 ...!ihnp4!seismo!ut-sally!ut-ngp!mic
  7.  */
  8.  
  9. #include <exec/types.h>
  10. #include <functions.h>
  11. #include <libraries/dos.h>
  12. #include "sysdef.h"
  13. #include "localproto.h"
  14.  
  15.  
  16. extern    long Delay();
  17.  
  18. void
  19. sleep(n)
  20. int n;
  21. {
  22.     if (n > 0)
  23.         Delay((long) n * TICKS_PER_SECOND);
  24. }
  25.